home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
commands
/
stterm
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-07-15
|
366b
|
25 lines
CFLAGS = -O
CMD = stterm read_tty write_tty
OBJ = do_shell.o err.o read_tty.o term.o write_tty.o
HDR = const.h
all: $(CMD)
clean:
rm -f *.o
clobber:
rm -f $(CMD)
stterm: term.o err.o
$(CC) -o stterm term.o err.o
write_tty: write_tty.o do_shell.o
$(CC) -o write_tty write_tty.o do_shell.o
read_tty: read_tty.o
$(CC) -o read_tty read_tty.o
$(OBJ): $(HDR)